Sat Jul 3 00:41:44 2004 Matthias Clasen <maclas@gmx.de>
* pixops/pixops.c (bilinear_box_make_weights): Correct the
math to calculate bilinear weights. (#112412, Brian Cameron)
+Sat Jul 3 00:41:44 2004 Matthias Clasen <maclas@gmx.de>
+
+ * pixops/pixops.c (bilinear_box_make_weights): Correct the
+ math to calculate bilinear weights. (#112412, Brian Cameron)
+
Mon Jun 21 00:44:51 2004 Matthias Clasen <maclas@gmx.de>
* gdk-pixbuf-transform.h:
dim->n = n;
dim->weights = pixel_weights;
- for (offset =0 ; offset < SUBSAMPLE; offset++)
+ for (offset = 0; offset < SUBSAMPLE; offset++)
{
double x = (double)offset / SUBSAMPLE;
double a = x + 1 / scale;
for (i = 0; i < n; i++)
{
w = linear_box_half (0.5 + i - a, 0.5 + i - x);
- w += linear_box_half (1.5 + x - i, 1.5 + a - i);
+ w += linear_box_half (0.5 + x - i, 0.5 + a - i);
*(pixel_weights++) = w * scale;
}